You are here:
Symbol Reference >
Dew Namespace
>
Dew.Math Namespace
>
Classes
>
Matrix Structure
>
Matrix Methods
>
Rem Method
>
Matrix.Rem Method ([In] TMtxVec, [In] TMtxVec)
Dew Math for .NET
Example
Matrix.Rem Method ([In] TMtxVec, [In] TMtxVec)
var a,b,c:
Matrix
; begin a.SetIt(1,4,
false
,[0,1,10,-1,-10]);
// a = [0, 1, 10, -1, -10];
b.SetIt(1,4,
false
,[0,1,PI,-1,-PI]);
// b = [0, 1, PI, -1, -PI];
c.Rem(a,b);
// c = [0, 0, 0.5752, 0, -0.5752]
end;
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
Contents
|
Index
|
Home